home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 029a / emenu110.zip / FMTADOS.BAT < prev   
DOS Batch File  |  1991-12-01  |  590b  |  17 lines

  1. Echo Off
  2. REM *****************************************************************
  3. REM Sample BatchFile FMTADOS.BAT
  4. REM *****************************************************************
  5. REM   Echo Off turns off display of subsequent commands.
  6. REM   Lines beginning with REM for Remark, are comments
  7. REM   and are ignored by the BatchFile processor.
  8. REM   FMTADOS.BAT Formats the disk in Drive A:, and making it
  9. REM   bootable with the /S command line option.
  10. REM
  11.  
  12. Format A: /S
  13.  
  14. REM   End of FMTADOS.BAT
  15. REM *******************************************************************
  16.  
  17.